home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-13 | 1.0 KB | 46 lines | [TEXT/MMCC] |
- // CImporting.h -- dialog class
- // Created 01/01/95 12:01 PM by AppMaker
-
- #pragma once
-
- #include <LDialogBox.h>
- #define cmd_Importing 'Impg'
- #define rPPob_Importing 202
-
- class LStream;
-
-
-
- //----------
- class CImporting : public LDialogBox {
- public: // these comprise the programming interface for using the dialog
- static CImporting* CreateImporting (LCommander *inSuperCommander);
-
-
- public: // these comprise the implementation
- static CImporting* CreateImportingStream (LStream *inStream);
-
- CImporting();
- CImporting (LStream *inStream);
- virtual ~CImporting();
-
-
- virtual void ListenToMessage (MessageT inMessage,
- void *ioParam);
-
- virtual Boolean ObeyCommand (CommandT inCommand,
- void *ioParam = nil);
- virtual void FindCommandStatus (CommandT inCommand,
- Boolean &outEnabled,
- Boolean &outUsesMark,
- Char16 &outMark,
- Str255 outName);
- virtual Boolean FocusDraw();
-
- protected:
- virtual void FinishCreateSelf();
-
- protected:
-
- };
-